From 03c274f00c78906d4fa258b79624e2ead3aa7eca Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 21 Jul 2009 14:26:52 +0100 Subject: [PATCH] xend: pass-through: fix regression in the ordering of the output of xm pci list changeset "python: Remove tab indents" (19937:e845326ae203) introduces a minor regression in the multi-function PCI pass-through code by causing bogus return values from the sort function which is used to order the output of "xm pci list". Signed-off-by: Simon Horman --- tools/python/xen/xm/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py index e557429d3d..6397382f88 100644 --- a/tools/python/xen/xm/main.py +++ b/tools/python/xen/xm/main.py @@ -2234,7 +2234,7 @@ def xm_pci_list(args): vdevfn = AUTO_PHP_SLOT else: vdevfn = x['vdevfn'] - return (vdevfn << 32) | \ + return (vdevfn << 32) | \ PCI_BDF(x['domain'], x['bus'], x['slot'], x['func']) devs.sort(None, f) -- 2.30.2